powered by
This function returns the Jaccard index for binary ids.
Jaccard.Index(x, y)
Return the value of Jaccard index.
true binary ids, 0 or 1.
predicted binary ids, 0 or 1.
Wei-Chen Chen wccsnow@gmail.com and Ranjan Maitra.
All ids, x and y, should be either 0 (not active) or 1 (active). Any value other than 1 will be converted to 0.
x
y
https://www.stat.iastate.edu/people/ranjan-maitra
library(EMCluster, quietly = TRUE) x.id <- c(1, 1, 1, 0, 0, 0, 3, 3, 3) y.id <- c(0, 1, 0, 1, 1, 1, 0, 1, 1) Jaccard.Index(x.id, y.id)
Run the code above in your browser using DataLab